home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’96 / O Boy / Source / ObjectSpec_da.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-06-21  |  500 b   |  40 lines  |  [TEXT/R*ch]

  1. #pragma once on
  2. /*
  3.     ObjectSpec_da.h
  4.     © Bob Boylan 1996
  5.  
  6.     Revision History
  7.     MacHack 1996    initial creation
  8. */
  9. #include "BaseTypes.h"
  10. #include "Helpers_ut.h"
  11.  
  12. #include <string>
  13.  
  14.  
  15.  
  16.  
  17. class ObjectSpec_da 
  18. {
  19. public:
  20.     // ctor
  21.                 ObjectSpec_da();
  22.                 ObjectSpec_da( DescType inDescType, Int_32 inPosition );
  23.     // dtor
  24.         virtual    ~ObjectSpec_da();
  25.  
  26.     // access    
  27.         virtual
  28.         string    GetSpecAsString();
  29.  
  30.     // data         
  31.         DescType _Kind;
  32.         Int_32     _Pos;
  33.         string     _Name;
  34.         string     _FormalName;
  35. protected:
  36.  
  37. private:
  38.  
  39. };
  40.